c# convert double to int

62

c# convert double to int -

double someDouble = 12323.2;
int someInt = (int)someDouble;

Comments

Submit
0 Comments